home *** CD-ROM | disk | FTP | other *** search
- /* ================
- * PedMenuFile.hh
- * ================
- */
-
- #pragma once
-
- #include "PedMenu.hh"
-
- class PedMenuFile : public PedMenu {
- public:
- PedMenuFile();
- virtual void InstallCommand(PedCommand *inCmd, CmdCode inCode);
- virtual void DoMenuItem(short inItem);
- protected:
- PedCommand *mNewCmd;
- PedCommand *mOpenCmd;
- PedCommand *mCloseCmd;
- PedCommand *mQuitCmd;
- };
-